EmailSettings
data class EmailSettings(val type: NavigationSpec.Email.Type = Type.Plain, val to: List<String> = emptyList(), val cc: List<String> = emptyList(), val bcc: List<String> = emptyList(), val subject: String? = null, val body: String? = null, val attachments: List<Uri> = emptyList())
Settings for the email
Parameters
type
The Email.Type of formatting to be used
to
The list of recipent emails
cc
The list of cc emails
bcc
The list of bcc emails
subject
Optional subject of the email
body
Optional body of the email
attachments
List of Uri pointing to attachments to add